home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / npp / finddlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.1 KB  |  44 lines

  1. // finddlg.h : interface of the CFindDlg class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #if (_WIN32_WCE <= 200) 
  6. // Backward compatibility for H/PC 1.0 and 2.0
  7. // For later versions, we use an improved implementation of the Find Dialog
  8. // in MFCCE.
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CFindDlg dialog
  12.  
  13. class CFindDlg : public CDialog
  14. {
  15. // Construction
  16. public:
  17.     CFindDlg(CWnd* pParent = NULL);   // standard constructor
  18.  
  19. // Dialog Data
  20.     //{{AFX_DATA(CFindDlg)
  21.     enum { IDD = IDD_FIND };
  22.     BOOL    m_bMatchCase;
  23.     CString    m_szText;
  24.     int m_nDirection;    // search direction 0=down, 1=up
  25.     //}}AFX_DATA
  26.  
  27. // Overrides
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(CFindDlg)
  30.     protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. protected:
  36.     // Generated message map functions
  37.     //{{AFX_MSG(CFindDlg)
  38.     afx_msg void OnEditFindNext();
  39.     virtual BOOL OnInitDialog();
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43. #endif // _WIN32_WCE <= 200
  44.